home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / misc / libx11inc.lha / X11 / Xm / Label.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-13  |  1.3 KB  |  55 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC.
  3.  * ALL RIGHTS RESERVED
  4. */ 
  5. /*   $RCSfile: Label.h,v $ $Revision: 1.10 $ $Date: 92/05/14 12:52:33 $ */
  6. /*
  7. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  8. /*
  9. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  10. #ifndef _XmLabel_h
  11. #define _XmLabel_h
  12.  
  13. #include <Xm/Xm.h>
  14.  
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18.  
  19. /*  Widget class and record definitions  */
  20.  
  21. externalref WidgetClass xmLabelWidgetClass;
  22.  
  23. typedef struct _XmLabelClassRec     * XmLabelWidgetClass;
  24. typedef struct _XmLabelRec      * XmLabelWidget;
  25.  
  26. /*fast subclass define */
  27. #ifndef XmIsLabel
  28. #define XmIsLabel(w)     XtIsSubclass(w, xmLabelWidgetClass)
  29. #endif /* XmIsLabel */
  30.  
  31.  
  32. /********    Public Function Declarations    ********/
  33. #ifdef _NO_PROTO
  34.  
  35. extern Widget XmCreateLabel() ;
  36.  
  37. #else
  38.  
  39. extern Widget XmCreateLabel( 
  40.                         Widget parent,
  41.                         char *name,
  42.                         Arg *arglist,
  43.                         Cardinal argCount) ;
  44.  
  45. #endif /* _NO_PROTO */
  46. /********    End Public Function Declarations    ********/
  47.  
  48.  
  49. #ifdef __cplusplus
  50. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  51. #endif
  52.  
  53. #endif /* _XmLabel_h */
  54. /* DON'T ADD ANYTHING AFTER THIS #endif */
  55.